/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

/* Header */
.header {
    padding: 13px 20px;
    border-bottom: 1px solid #e8e8e8;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
    touch-action: manipulation;
}

.logo {
    height: 33px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(87%);
}

.cart-icon {
    position: absolute;
    right: 0;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 13px;
    touch-action: manipulation;
}

.cart-icon:hover {
    opacity: 0.7;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Brand Description */
.brand-description {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: justify;
}

.brand-description p {
    font-family: 'Crimson Text', serif;
    font-size: 12.4px;
    line-height: 1.7;
    color: #999999;
    font-weight: 400;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 0;
}

/* Product Card */
.product-card {
    cursor: pointer;
    background-color: #ffffff;
    touch-action: manipulation;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 0;
}

.product-name {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #000000;
    text-align: left;
}

.product-price {
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    color: #999999;
    font-weight: 400;
    text-align: left;
}

.product-sold-out {
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    color: #999999;
    font-weight: 400;
    text-align: left;
}

/* Product Page (Full Screen) */
.product-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-page-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-family: 'Albert Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    touch-action: manipulation;
}

.breadcrumbs span {
    color: #666666;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #999999;
}

/* Product Image Section */
.product-image-section {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.product-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s ease;
    touch-action: manipulation;
}

.image-dot.active {
    background-color: #ffffff;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 32px;
    color: #000000;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.2s ease;
    z-index: 10;
    touch-action: manipulation;
}

.nav-arrow:hover {
    opacity: 0.6;
}

.nav-arrow-left {
    left: 15px;
}

.nav-arrow-right {
    right: 15px;
}

/* Product Details */
.product-details {
    padding: 0 0 20px 0;
}

.product-category-label {
    font-family: 'Albert Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000000;
    letter-spacing: 0.01em;
}

.product-price-detail {
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 25px;
}

.product-sold-out-detail {
    font-family: 'Crimson Pro', serif;
    font-size: 13px;
    color: #999999;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Selector Section */
.selector-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.selector-label {
    display: block;
    font-family: 'Albert Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #444444;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-buttons {
    display: flex;
    gap: 0;
    background-color: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 22px;
    padding: 4px;
    overflow: hidden;
}

.size-btn {
    flex: 1;
    min-width: 50px;
    padding: 10px 16px;
    background-color: transparent;
    border: none;
    border-radius: 18px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    cursor: pointer;
    transition: all 0.25s ease;
    touch-action: manipulation;
}

.size-btn:hover:not(.active) {
    background-color: #f5f5f5;
}

.size-btn.active {
    background-color: #000000;
    color: #ffffff;
}

/* Add to Cart Button */
.add-to-cart-button {
    width: 100%;
    padding: 11px;
    background-color: #C4C4C4;
    border: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: background-color 0.2s ease;
    touch-action: manipulation;
}

.add-to-cart-button:hover:not(:disabled) {
    background-color: #000000;
}

.add-to-cart-button:disabled {
    cursor: not-allowed;
}

/* Expandable Sections */
.expandable-sections {
    margin-top: -5px;
}

.expandable-item {
    border-bottom: 1px solid #e8e8e8;
}

.expandable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    font-family: 'Albert Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    touch-action: manipulation;
}

.expandable-header:hover {
    opacity: 0.7;
}

.expandable-header .arrow {
    font-size: 18px;
    color: #666666;
    transition: transform 0.3s ease;
}

.expandable-item.active .arrow {
    transform: rotate(90deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expandable-item.active .expandable-content {
    max-height: 1000px;
}

.expandable-content-inner {
    padding: 20px 0 40px 0;
}

.expandable-content-inner p {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 400;
}

.expandable-content-inner p:last-child {
    margin-bottom: 0;
}

.expandable-content-inner p strong {
    color: #000000;
    font-weight: 600;
}

/* Description Section Specific Styles */

.description-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0 20px 0;
}

.description-list li {
    font-family: 'Albert Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 4px;
}

.washing-instructions {
    margin-top: 20px;
}

.washing-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 8px;
}

.washing-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 0;
}

.washing-list li {
    font-family: 'Albert Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 4px;
}

/* Size Guide Image Styles */
.size-guide-content {
    padding: 40px 0 40px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.size-guide-image {
    width: 200px;
    height: 200px;
    display: block;
}

/* THREET Section Specific Styles */
.threet-section {
    display: flex;
    gap: 30px;
    padding: 10px 0 20px 0;
}

.threet-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.threet-heading {
    font-family: 'Albert Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #444444;
    margin: 0;
    text-transform: uppercase;
}

.threet-button {
    width: 100%;
    padding: 14px 24px;
    background-color: #ffffff;
    border: 1.5px solid #d1d1d1;
    border-radius: 50px;
    font-family: 'Albert Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #444444;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    touch-action: manipulation;
}

.threet-button:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

.threet-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Styles */
@media screen and (min-width: 769px) {
    /* Header */
    .header {
        padding: 17px 40px;
    }
    
    .logo {
        height: 37px;
    }
    
    /* Brand Description */
    .brand-description {
        padding: 40px 40px;
        max-width: 929px;
    }
    
    .brand-description p {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }
    
    /* Main Content */
    .main-content {
        padding: 0 40px 60px 40px;
    }
    
    /* Products Grid - Desktop specific */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-top: 0;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price,
    .product-sold-out {
        font-size: 14px;
    }
    
    /* Product Page - Desktop Layout */
    .product-page-content {
        max-width: 1200px;
        padding: 0 40px 100px 40px;
        display: grid;
        grid-template-columns: 1fr 500px;
        column-gap: 60px;
        row-gap: 0;
        align-items: start;
    }
    
    .breadcrumbs {
        grid-column: 1 / -1;
        padding: 20px 0 20px 0;
        font-size: 11px;
    }
    
    .product-image-section {
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
        grid-column: 1;
        grid-row: 2;
    }
    
    .product-details {
        grid-column: 2;
        grid-row: 2;
        position: sticky;
        top: 100px;
    }
    
    .product-category-label {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .product-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .product-price-detail,
    .product-sold-out-detail {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .selector-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .selector-label {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .size-buttons {
        border-radius: 24px;
        padding: 5px;
    }
    
    .size-btn {
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 19px;
    }
    
    .add-to-cart-button {
        padding: 13px;
        font-size: 13px;
        margin-bottom: 40px;
    }
    
    .expandable-header {
        padding: 14px 0;
        font-size: 12px;
    }
    
    .expandable-content-inner {
        padding: 25px 0 45px 0;
    }
    
    .expandable-content-inner p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .description-list li,
    .washing-title,
    .washing-list li {
        font-size: 13px;
        line-height: 1.9;
    }
    
    .threet-section {
        gap: 40px;
    }
    
    .threet-heading {
        font-size: 12px;
    }
    
    .threet-button {
        padding: 15px 28px;
        font-size: 12px;
    }
    
    /* Cart sidebar */
    .cart-panel {
        width: 450px;
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 1440px) {
    .header {
        padding: 20px 60px;
    }
    
    .logo {
        height: 40px;
    }
    
    .brand-description {
        padding: 50px 60px;
        max-width: 929px;
    }
    
    .brand-description p {
        font-size: 15px;
        text-align: justify;
    }
    
    .main-content {
        padding: 0 60px 80px 60px;
    }
    
    .products-grid {
        gap: 50px;
    }
    
    .product-page-content {
        max-width: 1400px;
        padding: 0 60px 120px 60px;
        column-gap: 80px;
        row-gap: 0;
        grid-template-columns: 1fr 550px;
    }
    
    .product-details {
        top: 120px;
    }
}

/* Tablet Styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .logo {
        height: 50px;
    }
    
    .brand-description {
        padding: 35px 30px;
        max-width: 929px;
    }
    
    .brand-description p {
        text-align: justify;
    }
    
    .main-content {
        padding: 0 30px 50px 30px;
    }
    
    .product-page-content {
        grid-template-columns: 1fr 450px;
        column-gap: 50px;
        row-gap: 0;
        padding: 0 30px 80px 30px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .header {
        padding: 15px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .cart-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .cart-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-item {
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-name {
        font-size: 13px;
    }
    
    .cart-item-options {
        font-size: 9px;
    }
    
    .cart-item-price {
        font-size: 10px;
    }
    
    .brand-description {
        padding: 20px 15px;
    }
    
    .brand-description p {
        font-family: 'Crimson Text', serif;
        font-size: 12px;
        line-height: 1.6;
    }
    
    .main-content {
        padding: 0 15px 30px 15px;
    }
    
    .products-grid {
        gap: 24px;
    }
    
    .product-name {
        font-family: 'Crimson Text', serif;
        font-size: 13px;
    }
    
    .product-price,
    .product-sold-out {
        font-family: 'Crimson Pro', serif;
        font-size: 12px;
    }
    
    .product-page-content {
        padding: 0 15px 60px 15px;
    }
    
    .breadcrumbs {
        font-size: 10px;
        padding: 12px 0;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .product-price-detail,
    .product-sold-out-detail {
        font-size: 16px;
    }
    
    .nav-arrow {
        font-size: 28px;
        padding: 8px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
    
    .expandable-header {
        padding: 11px 0;
        font-size: 12px;
    }
    
    .expandable-content-inner {
        padding: 15px 0 35px 0;
    }
    
    .expandable-content-inner p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 7px;
    }
    
    .description-list li {
        font-size: 14px;
    }
    
    .washing-title {
        font-size: 14px;
    }
    
    .washing-list li {
        font-size: 14px;
    }
    
    .threet-section {
        gap: 20px;
    }
    
    .threet-heading {
        font-size: 12px;
    }
    
    .threet-button {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .products-grid {
        gap: 21px;
    }
    
    .main-content {
        padding: 0 12px 25px 12px;
    }
    
    .brand-description {
        padding: 18px 12px;
    }
    
    .product-name {
        font-family: 'Crimson Text', serif;
        font-size: 12px;
    }
    
    .product-price,
    .product-sold-out {
        font-family: 'Crimson Pro', serif;
        font-size: 11px;
    }
    
    .size-buttons {
        padding: 3px;
        border-radius: 20px;
    }
    
    .size-btn {
        min-width: 45px;
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 16px;
    }
    
    .expandable-header {
        padding: 10px 0;
        font-size: 11px;
    }
    
    .expandable-content-inner {
        padding: 10px 0 30px 0;
    }
    
    .expandable-content-inner p {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    
    .description-list li {
        font-size: 13px;
    }
    
    .washing-title {
        font-size: 13px;
    }
    
    .washing-list li {
        font-size: 13px;
    }
    
    .threet-section {
        gap: 15px;
    }
    
    .threet-heading {
        font-size: 11px;
    }
    
    .threet-button {
        padding: 11px 18px;
        font-size: 11px;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.cart-sidebar.active {
    display: block;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.cart-header h2 {
    font-family: 'Albert Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #333333;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 300;
    color: #000000;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s ease;
    touch-action: manipulation;
}

.cart-close:hover {
    opacity: 0.6;
}

/* Cart Content */
.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999999;
    font-size: 14px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0;
    color: #000000;
}

.cart-item-options {
    font-family: 'Albert Sans', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #444444;
}

.cart-item-price {
    font-family: 'Albert Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #444444;
    margin-top: auto;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: color 0.2s ease;
    touch-action: manipulation;
}

.cart-item-remove:hover {
    color: #000000;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 20px;
    padding: 5px 10px;
}

.quantity-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    padding: 0 5px;
    transition: opacity 0.2s ease;
    touch-action: manipulation;
}

.quantity-btn:hover {
    opacity: 0.6;
}

.quantity-value {
    font-size: 14px;
    color: #000000;
    min-width: 20px;
    text-align: center;
}

/* Cart Footer */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #e8e8e8;
    background-color: #ffffff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-label {
    font-family: 'Albert Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    color: #444444;
}

.cart-total-price {
    font-family: 'Albert Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444444;
}

.checkout-button {
    width: 100%;
    padding: 16px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-family: 'Albert Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    touch-action: manipulation;
    text-transform: uppercase;
}

.checkout-button:hover {
    background-color: #333333;
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-tap-highlight-color: transparent;
    }
    
    .add-to-cart-button:active {
        background-color: #000000;
    }
    
    .cart-icon:active {
        opacity: 0.5;
    }
    
    .size-btn:active {
        transform: scale(0.95);
    }
    
    .checkout-button:active {
        background-color: #444444;
    }
}
