/* minimal css reset for photography absurd shop */
/* ensures our custom styles have complete control */

/* reset woocommerce specific elements */
.woocommerce * {
    box-sizing: border-box;
}

/* reset default margins and padding on key elements */
.woocommerce ul, 
.woocommerce ol, 
.woocommerce li {
    margin: 0;
    padding: 0;
    list-style: none;
}



/* reset default link styling */
.woocommerce a {
    color: inherit;
    text-decoration: none;
}

/* reset default form styling */
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    color: inherit;
}

/* ensure images are responsive */
.woocommerce img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* reset default table styling */
.woocommerce table {
    border-collapse: collapse;
    width: 100%;
}

.woocommerce td,
.woocommerce th {
    padding: 0;
    text-align: left;
}

/* remove default outline on focus */
.woocommerce *:focus {
    outline: none;
}

/* ensure consistent typography */
.woocommerce * {
    font-family: "Playfair Display", serif;
    line-height: 1.4;
}

/* exempt navigation elements from global styles to prevent conflicts */
.woocommerce .nav_outer *,
.nav_outer *,
#nav,
.nav_title,
.nav_byoscar,
.nav_item,
.nav_pagelink,
.nav_sub,
.nav_dropdown_item,
.nav_portfolio_mobile_item {
    font-family: "Inter", sans-serif;
    line-height: normal;
    box-sizing: content-box;
}

/* Fix specific navigation spacing issues */
.nav_item {
    margin-top: 14px;
    text-transform: uppercase;
}

.nav_title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 0px;
    margin-top: 14.5px;
}

.nav_byoscar {
    font-size: 15px;
    font-weight: 700;
    margin-top: -3px;
}

.nav_right {
    margin-top: -4px;
}