 :root {
            --emerald: #50C878;
            --emerald-dark: #3DA162;
            --emerald-light: #7DDFA3;
            --cream: #F8F9F2;
            --taupe: #C4B7A6;
            --charcoal: #333333;
            --light-gray: #f5f5f5;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--charcoal);
            background-color: var(--cream);
        }
        
        .product-detail-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 15px;
        }
        
        .breadcrumb-area {
            background-color: var(--light-gray);
            padding: 15px 0;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-item a {
            color: var(--emerald-dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-item a:hover {
            color: var(--emerald);
            text-decoration: underline;
        }
        
        .breadcrumb-item.active {
            color: var(--charcoal);
            font-weight: 500;
        }
        
        .product-gallery {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 20px;
            height: 100%;
        }
        
        .main-image-container {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: var(--border-radius);
            background-color: #f9f9f9;
        }
        
        .main-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: var(--transition);
        }
        
        .zoom-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .zoom-icon:hover {
            background: var(--emerald);
            transform: scale(1.1);
        }
        
        .thumbnail-slider {
            position: relative;
            padding: 0 30px;
        }
        
        .thumbnail-item {
            padding: 5px;
            cursor: pointer;
            transition: var(--transition);
            border-radius: var(--border-radius);
            border: 2px solid transparent;
        }
        
        .thumbnail-item:hover, .thumbnail-item.slick-current {
            border-color: var(--emerald);
        }
        
        .thumbnail-item img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .slick-prev, .slick-next {
            width: 30px;
            height: 30px;
            z-index: 1;
            background: var(--emerald);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .slick-prev:hover, .slick-next:hover {
            background: var(--emerald-dark);
        }
        
        .slick-prev:before, .slick-next:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: white;
        }
        
        .slick-prev {
            left: 0;
        }
        
        .slick-prev:before {
            content: "\f104";
        }
        
        .slick-next {
            right: 0;
        }
        
        .slick-next:before {
            content: "\f105";
        }
        
        .product-info {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            height: 100%;
        }
        
        .product-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--charcoal);
        }
        
        .product-rating {
            margin-bottom: 20px;
            color: #FFC107;
            font-size: 18px;
        }
        
        .product-price {
            font-size: 24px;
            font-weight: bold;
            color: var(--emerald);
            margin-bottom: 20px;
        }
        
        .product-price del {
            font-size: 18px;
            color: #777;
            margin-right: 10px;
        }
        
        .product-short-desc {
            margin-bottom: 25px;
            color: #555;
            line-height: 1.6;
        }
        
        .option-selector {
            margin-bottom: 20px;
        }
        
        .option-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--charcoal);
        }
        
        .size-selector, .color-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .size-option, .color-option {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .size-option:hover, .size-option.active {
            background: var(--emerald);
            color: white;
            border-color: var(--emerald);
        }
        
        .color-option {
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .color-option.active::after {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: white;
            font-size: 12px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background: var(--light-gray);
            border: 1px solid #ddd;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .quantity-btn:hover {
            background: var(--emerald-light);
            color: white;
        }
        
        .quantity-input {
            width: 60px;
            height: 40px;
            border: 1px solid #ddd;
            text-align: center;
            font-weight: 500;
            font-size: 16px;
            border-left: none;
            border-right: none;
        }
        
        .add-to-cart-btn {
            background: var(--emerald);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .add-to-cart-btn:hover {
            background: var(--emerald-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .share-section {
            padding-top: 20px;
            border-top: 1px solid #eee;
            margin-top: 25px;
        }
        
        .share-label {
            display: block;
            margin-bottom: 15px;
            font-weight: 500;
            color: var(--charcoal);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--emerald);
            color: white;
            transform: translateY(-3px);
        }
        
        .product-tabs {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-top: 40px;
            overflow: hidden;
        }
        
        .tab-header {
            display: flex;
            border-bottom: 1px solid #eee;
        }
        
        .tab-button {
            padding: 15px 25px;
            background: none;
            border: none;
            font-weight: 500;
            color: var(--charcoal);
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .tab-button.active {
            color: var(--emerald);
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--emerald);
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: block;
        }
        
        .description-content {
            line-height: 1.8;
            color: #555;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
        }
        
        .feature-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--emerald);
            margin-right: 10px;
        }
        
        .review-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .rating-section {
            margin-bottom: 20px;
        }
        
        .rating-stars {
            display: flex;
            gap: 5px;
            margin-top: 10px;
        }
        
        .star {
            font-size: 24px;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .star.active, .star:hover {
            color: #FFC107;
        }
        
        .review-textarea {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            resize: vertical;
        }
        
        .submit-review-btn {
            background: var(--emerald);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
        }
        
        .submit-review-btn:hover {
            background: var(--emerald-dark);
        }
        
        .related-products {
            margin-top: 60px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--emerald);
        }
        
        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .product-card-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .product-card-body {
            padding: 20px;
        }
        
        .product-card-title {
            font-size: 18px;
            margin-bottom: 10px;
            height: 50px;
            overflow: hidden;
        }
        
        .product-card-price {
            font-weight: bold;
            color: var(--emerald);
        }
        
        /* Modal for zoomed image */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90%;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .main-image-container {
                height: 400px;
            }
        }
        
        @media (max-width: 767px) {
            .main-image-container {
                height: 300px;
            }
            
            .product-title {
                font-size: 24px;
            }
        }